etc: Use Popen instead of call to spawn processes
authorAlex Crichton <alex@alexcrichton.com>
Wed, 22 Jul 2015 21:33:52 +0000 (14:33 -0700)
committerAlex Crichton <alex@alexcrichton.com>
Thu, 23 Jul 2015 05:53:09 +0000 (22:53 -0700)
commit819af01db1ecb76ca09c7fa17758ff5e920011aa
treea446cdd362ce14dee55de354b6f82f8f46559d45
parent71b522c2914e33534036de823864d02010cb3b37
etc: Use Popen instead of call to spawn processes

I saw the usage of `call` locking up quite a bit when running this script on
Windows, and googling around on the internet seems to indicate that Popen should
be used instead of call to prevent this locking up, and it does indeed work!
src/etc/download.py